home *** CD-ROM | disk | FTP | other *** search
- #ifndef PRIOQ_H
- #define PRIOQ_H
-
- #include "datetime.h"
- #include "gen_alloc.h"
-
- struct prioq_elt { datetime_sec dt; unsigned long id; } ;
-
- GEN_ALLOC_typedef(prioq,struct prioq_elt,p,len,a)
-
- extern int prioq_insert();
- extern int prioq_min();
- extern void prioq_delmin();
-
- #endif
-